launchSafelyWithoutExceptions

inline fun CoroutineScope.launchSafelyWithoutExceptions(    context: CoroutineContext = EmptyCoroutineContext,     start: CoroutineStart = CoroutineStart.DEFAULT,     noinline onException: ExceptionHandler<Unit?> = defaultSafelyWithoutExceptionHandlerWithNull,     noinline block: suspend CoroutineScope.() -> Unit): Job